From 3b57c84bc0c8cbcb1aa99537875dadc883ffd12f Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 28 Oct 2003 23:47:26 +0000 Subject: [PATCH] Fix reads of tracks when time_t isn't 32bits. (as on AMD64/Linux) --- gpsbabel/mapsource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/mapsource.c b/gpsbabel/mapsource.c index 669555409..972d90225 100644 --- a/gpsbabel/mapsource.c +++ b/gpsbabel/mapsource.c @@ -1204,7 +1204,7 @@ mps_track_r(FILE *mps_file, int mps_ver, route_head **trk) int lat; int lon; - time_t dateTime = 0; + int dateTime = 0; route_head *track_head; unsigned int trk_count; -- 2.30.2